home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / ttyAttach.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  35 lines

  1. /*
  2.  * ttyAttach.h --
  3.  *
  4.  *    Declarations for things exported by devTtyAttach.c to the rest
  5.  *    of the device module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/ttyAttach.h,v 9.1 91/11/04 14:09:03 mgbaker Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVTTYATTACH
  20. #define _DEVTTYATTACH
  21.  
  22. #ifndef _DEVTTY
  23. #include "tty.h"
  24. #endif
  25. #ifndef _DEVZ8530
  26. #include "z8530.h"
  27. #endif
  28.  
  29. extern DevZ8530 *DevGrabKeyboard _ARGS_((void (*inputProc)(), ClientData inputData, int (*outputProc)(), ClientData outputData));
  30. extern void DevReleaseKeyboard _ARGS_((void));
  31. extern DevTty *DevTtyAttach _ARGS_((int unit));
  32. extern void DevTtyInit _ARGS_((void));
  33.  
  34. #endif /* _DEVTTYATTACH */
  35.